home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_055 / vt100 / readme < prev    next >
Text File  |  1992-05-06  |  11KB  |  240 lines

  1. This archive contains a vt100 emulator with KERMIT and XMODEM file
  2. transfer protocols by Dave Wecker (V2.6 DBW 870227).
  3.  
  4. Thanks:
  5. -------
  6.     To everyone who sent in code and suggestions!
  7.  
  8. Releases:
  9. ---------
  10.     v2.6 870227 DBW - bug fixes for all the stuff in v2.5
  11.     v2.5 870214 DBW - more additions (see readme file)
  12.     v2.4 861214 DBW - lots of fixes/additions
  13.     v2.3 861101 DBW - minor bug fixes
  14.     v2.2 861012 DBW - more of the same
  15.      v2.1 860915 DBW - new features (see README)
  16.     v2.0 860823 DBW - Major rewrite
  17.     v1.1 860720 DBW    - Switches, 80 cols, colors, bug fixes
  18.     v1.0 860712 DBW    - First version released
  19.  
  20. Usage:
  21. ------
  22.     Please read VT100.DOC for usage information and examples.
  23.  
  24. Release Notes:
  25. --------------
  26. v2.6 870227 DBW - bug fixes for all the stuff in v2.5
  27.     - Input requestors are now self selecting (ignore comment in 2.5)
  28.     - Added a BS<->DEL menu item and startup option (SWAP ON/OFF)
  29.     - Renamed dopen/dnext/dclose to diropen/dirnext/dirclose for LATTICE
  30.     - Added a CONVERT option that tells whether KERMIT should downcase
  31.     - MAJOR CHANGE: re write the INPUT/SCRIPT commands, see VT100.DOC
  32.     - Fixed a major problem with Set Directory causing LOCK conflicts
  33.     - Moved the Title up 1 pixel so that it doesn't get cut off anymore
  34.  
  35. v2.5 870214 DBW - more additions (see readme file)
  36.     - All prompting now done through a string requester/gadget.
  37.       NOTE: YOU MUST SELECT THE INPUT STRING OF THE REQUESTER BEFORE
  38.         YOU CAN TYPE A RESPONSE.
  39.     - Local echo mode added (half duplex for Carolyn)
  40.     - BEEP command added to SCRIPT
  41.     - New menu/init/script items:
  42.         CLEAR SCREEN    - clears the screen
  43.          ECHO        - turns on/off half duplex mode
  44.         WRAP        - turns on/off autowrap on long lines
  45.         NUMKEY        - turns on/off numeric keypad mode
  46.         APPCUR        - turns on/off application cursor mode
  47.     - Rewrote toasc() to use qualifier field (no more getting the
  48.       keyboard "stuck")
  49.     - Fixed locking of directories (should now run under workbench ok)
  50.     - Cleaned up VT100.H to really check includes on compile
  51.     - Setting font explicitly to TOPAZ 8 (no more dumb assumptions)
  52.  
  53. v2.4 861214 DBW - lots of fixes/additions
  54.     - Beep should now work under Lattice
  55.     - CreatePort now passes longs (as it should always have)
  56.     - Nested comments in KERMIT.C removed
  57.     - Beep volume of 0 (DisplayBeep) now works
  58.     - snum[] declaration in KERMIT.C fixed
  59.     - multi_xfer is now void and return fixed (in kermit)
  60.     - "." can no longer get "stuck" as the break key
  61.  
  62.     - RIGHT-AMIGA-keys have been added for most menu items
  63.     - The ALT key is now an EIGHTth bit shifter
  64.     - Control-@, Control-2, Control-space send the NULL character
  65.     - Control-6 now sends Control-^
  66.     - Control-- and Control-? now sends Control-_
  67.     - Cursor application mode (<esc>[?1h and <esc>[?1l) now work
  68.     - XMODEM now masks the eighth bit if parity is other than NONE
  69.  
  70. v2.3 861101 DBW - minor bug fixes:
  71.     - added p_wbcolors to allow workbench colors on custom screen
  72.       (In the init file you can specify WBCOLORS to be NO (use color
  73.        definitions in INIT FILE or VT100.H) or YES (use WORKBENCH
  74.        colors for everything)).
  75.     - "$" now sends a kermit-bye (like it says in VT100.DOC).
  76.     - made window/screen heights more reasonable
  77.     - Added ANSI insert line and delete line (<csi><num>L and
  78.       <csi><num>M) to speed up various editors (like emacs).
  79.       NOTE: This is NOT a VT100 sequence (new extension).
  80.     - ctrl-space now also sends a null (along with ^@ and ^`)
  81.     - RAWKEY fixed in WINDOW.C
  82.     - p_wrap fixed in WINDOW.C
  83.     - removed WRDMAX from VT100.H
  84.     - fixed exit with no params in SCRIPT.C
  85.     - fixed parity comparisons in KERMIT.C
  86.     - init file [n+1] changed to [nplus1] to make Lattice happy.
  87.     - cursoron(), cursoroff() changed to one routine cursorflip().
  88.     - long lines shortened to less than 80 characters (for gateways).
  89.     - blanks following exit (or comments) now work in scripts.
  90.  
  91. v2.2 861012 DBW - more of the same:
  92.     - The INIT file "exit" can now chain to a script
  93.     - The SCRIPT command "exit" can now chain to another script
  94.     - Hangup menu item now works.
  95.     - Autowrap can now be set from VT100.H, VT100.INIT (<esc>[?7h l)
  96.     - Control-G is now handled with an audible beep
  97.     - Script now used "^chr" to send control characters
  98.     - The graphics "box" character (a) was added
  99.     - Control-@ and Control-` now send the NULL character
  100.     - Alternate color for BOLD has been re-instated by popular demand
  101.     - Menus have been cleaned up.
  102.     - Lattice compilation cleaned up.
  103.     - No more wordsize parameter since PARITY takes care of all cases
  104.     - Function keys can now call scripts
  105.     - Double shift keys are now handled correctly.
  106.     - Version has been added to the title bar (for bug reports).
  107.  
  108. v2.1 860915 DBW - new features / bug fixes
  109.     - Now identifies as a VT100 (including the response to <esc>Z)
  110.     - Cursor color now gets read in as hex (instead of decimal)
  111.     - REPORTMOUSE taken out of definitions (not needed)
  112.     - XON/XOFF now being handled by the device driver instead of me
  113.     - Literal escape characters have been replaced with \033
  114.     - At init time the user can now specify the input BUFFER size
  115.       (typically between 512 and 2048 bytes) depending on baud rate
  116.     - Script files are now case insensitive for commands
  117.     - XMODEM now turns off the driver XON/XOFF during transfers
  118.     - Graphic rendition now done by the OS instead of me.
  119.     - Initialization files are now searched for in S: instead of C:
  120.     - Forward GOTO bug fixed in the script package.
  121.     - Keypad can now be used in both numeric and application mode
  122.     - General purpose cleanup() routine added for all exits.
  123.     - Utility menu added (sendbreak, hangup, change directory).
  124.       NOTE: hangup is not implemented yet.
  125.     - Full wild card support in file transfers (see vt100.doc).
  126.     - Kermit cleaned up with better filename handling (from host).
  127.     - Script now has CD (changed directory) and SB (send break) commands
  128.     - Added Parity and Wordsize choices in VT100.H, VT100.INIT, menu
  129.       and scripts. (Generates parity from a table).
  130.     - Added 8th bit quoting in KERMIT when using 7 bit words (ODD or
  131.       EVEN parity).
  132.     - Break time can be set from VT100.H, VT100.INIT or a script file.
  133.     - Transfer mode (image or CRLF) can now be set from a script file.
  134.     - Control characters in escape sequences now act like a true VT100.
  135.     - F10 now works from init files.
  136.     - Right (or Left) AMIGA with period (".") sends a BREAK to the host
  137.       from the keyboard.
  138.     - XMODEM status kept down to one line for a file transfer.
  139.  
  140. v2.0 860823 DBW    - Major rewrite:
  141.     - Emulator now compiles under either MANX or LATTICE by defining
  142.       the appropriate compiler type in VT100.H.
  143.     - Sped up code to an effective baud rate of (about) 8k. This means
  144.       that clear text at 4800 baud should be no problem.
  145.     - Added XON/XOFF generation so that characters should not get lost
  146.       any more at 9600 baud (when receiving clear text).
  147.     - Got rid of all command line switches and environment variables.
  148.       Instead upon invocation the program searches first for any file
  149.       named on the command line, then looks for VT100.INIT in the
  150.       current directory and finally searches for C:VT100.INIT.
  151.       All parameters can be set in the init file, and a sample VT100.INIT
  152.       is provided in VT100.DOC that shows all possible options.
  153.     - All parameters that are set by VT100.INIT are defined in VT100.H
  154.       (variables starting with "p_"). This allows you to compile your
  155.       own defaults into the code.
  156.     - You can now set the number of lines (for all you EMACS freaks :-).
  157.       On an interlaced screen this gives you upto a 48 line terminal.
  158.     - WORKBENCH colors are NEVER touched.
  159.     - In an attempt to keep the size down, the color palette menu item
  160.       has been removed (current). Code is about 36K in size with a
  161.       run time image (using workbench screen) of about 88k.
  162.     - Many bugs fixed including reverse scrolling with descenders,
  163.       reverse video at end of line, clearing with scrolling regions,
  164.         ... and 20 or more others.
  165.     - File capture now no longer sends the filename to the host.
  166.     - BOLD (<esc>[1m) has now been added by using an additional color
  167.       when you specify a depth of 2 (instead of 1) bitplane.
  168.     - UNDERLINE (<esc>[4m) has now been added.
  169.     - The handling of remote (host) escape sequences has been completly
  170.       re-written (thanks to Dawn Banks for all the work).
  171.     - Function keys (and shifted function keys) can now be bound to
  172.       arbitrary strings (Jim Ravan gets his macros). See VT100.DOC
  173.       for details.
  174.     - Cursor has no been reduced to the size of a normal character for
  175.       easier readability.
  176.     - XMODEM has been improved (by Steve Drew) to use a timer device
  177.       (for timeouts) and to abort immediately if the user types <ESC>.
  178.     - KERMIT has been completely re-written and appears to work fine,
  179.       thanks to the efforts of Steve Drew.
  180.     - New menu item allows script file support. Module written by
  181.       Steve Drew. See VT100.DOC for details.
  182.  
  183. Known problems:
  184. ---------------
  185.     none
  186.  
  187. Suggestions/bug fixes not implemented (as of yet):
  188. --------------------------------------------------
  189.     - Custom screen should use a borderless backdrop window
  190.     - Quit from keyboard should be supported (for above)
  191.     - Automatic maximum sizing of window should happen
  192.     - Screen should be resizable
  193.     - AT TIME should be implemented in scripts (besides DELAY)
  194.     - Amiga keys for script execution/abort
  195.     - Alternate execute of script files through the S: directory
  196.     - Command line arguments to allow for scripts
  197.     - Kermit toggle to leave file names alone
  198.     - Kermit should create sub directories (when necessary)
  199.     - Use the system keymap
  200.     - Use a disk font for graphic character set
  201.     - Allow the mouse to be sent to the host (for various EMACSs)
  202.     - Kermit VM/CMS (IBM) protocol support
  203.  
  204. Installation:
  205. -------------
  206.     The files in this archive may be extracted by the bourne shell
  207.     (/bin/sh) or the shar program using the "unshar switch (-u)",
  208.     contact me if you need a copy of this version of shar.
  209.  
  210.     REMEMBER: Set the correct compiler definition in VT100.H
  211.  
  212. Files:
  213. ------
  214.     README        - this file
  215.     vt100.doc    - documentation for the terminal emulator
  216.     makefile    - make file for the emulator (under MANX AZTEC-C)
  217.     vt100.h        - include file used by all other modules
  218.     window.c    - manager for window and keyboard
  219.     vt100.c        - main module, handles menus
  220.     remote.c    - handle remote characters (vt100 emulation)
  221.     kermit.c    - kermit protocol (to transfer text files on VMS
  222.               select the CRLF option on the transfer mode menu,
  223.               otherwise use image mode).
  224.     init.c        - startup code
  225.     xmodem.c    - xmodem protocol that understands AMIGA binary and
  226.               text file formats (automatically).
  227.     script.c    - script control package
  228.     expand.c    - filename expansion (wildcards) and dir setting
  229.  
  230. Contact:
  231. --------
  232. Please send bugs/comments/suggestions/praise to:
  233.  
  234.     Dave Wecker at    ENET:    COOKIE::WECKER
  235.             ARPA:    wecker%cookie.dec.com@decwrl.dec.com
  236.             USENET:    {decvax|decwrl}!cookie.dec.com!wecker
  237.             SNAIL:    Dave Wecker
  238.                 115 Palm Springs Drive
  239.                 Colorado Springs, CO  80908
  240.